home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / tcshsrc.zoo / tcsh / tcsh.rc < prev    next >
Encoding:
Text File  |  1992-03-13  |  1.9 KB  |  81 lines

  1. #
  2. # misc. standard csh variables get set here
  3. #
  4. set history=25
  5. set autolist
  6. set prompt='csh(\!) '
  7.  
  8. #
  9. # special tcsh alias: a command that gets executed before every prompt
  10. # this makes sure the cursor is on
  11. # (unfortunately, this leaks memory, so it's best not to use it :-(
  12. # alias precmd 'echotc ti'
  13.  
  14. #
  15. # atariST extension: use ^ instead of \ as an escape character,
  16. # so that  \ can be used more conveniently in file names
  17. #
  18. set escchar=^
  19.  
  20. #
  21. # atariST extension: use \ in preference to / when completing names,
  22. # doing ls-F, etc. Set this variable only if you have set escchar to
  23. # something other than \
  24. #
  25. # set dosslashes
  26. #
  27.  
  28. #
  29. # with MiNT 0.93+, you can set terminals to send vt52 escape sequences
  30. # when cursor/function keys are pressed. we do that here (it assumes
  31. # that the "stty" program is on your search path) and set some
  32. # bindings
  33. #
  34. # stty vt52 # this really should be done in mint.cnf or login.csh
  35.  
  36. bindkey "^[A" up-history
  37. bindkey "^[B" down-history
  38. bindkey "^[C" forward-char
  39. bindkey "^[D" backward-char
  40.  
  41. # these match gulam's use of Insert and Clr/Home
  42.  
  43. bindkey "^[E" list-choices
  44. bindkey "^[I" complete-word
  45.  
  46. #
  47. # note: in PATH, use "/dev/c" in place of "c:". If you're using MiNT
  48. # and drive U:, you don't need to worry about this, since all your
  49. # paths can be absolute
  50. #
  51. setenv PATH :/dev/d/bin:/dev/d/gnu/bin:/dev/e/mint/bin:/dev/i/mgr/bin
  52. rehash
  53.  
  54. #
  55. # environment: this is for my setup, customize as you see fit
  56. #
  57.  
  58. set term=st52
  59. set home=e:\home
  60. setenv GCCEXEC d:\gnu\bin\gcc-
  61. setenv GNULIB d:\gnu\lib
  62. setenv GNUINC c:\libsrc\include
  63. setenv TEMP m:
  64. setenv TMPDIR $TEMP
  65. setenv USER eric
  66. setenv CC gcc
  67. setenv AS gcc-as
  68. setenv SHELL sh
  69. setenv TZ EST5EDT
  70. setenv UNIXMODE "/cu"
  71. setenv TEXINPUTS '.;f:\tex\macros'
  72. setenv TEXFORMATS f:\tex\macros
  73. setenv TEXFONTS f:\tex\fonts
  74. setenv TMACDIR c:\nroff\src
  75.  
  76. #
  77. # aliases:
  78. #
  79.  
  80. alias ls ls-F
  81.